home *** CD-ROM | disk | FTP | other *** search
/ Inter.Net 55-1 / Inter.Net 55-1.iso / CBuilder / Setup / BCB / data.z / custdata.h < prev    next >
Encoding:
C/C++ Source or Header  |  1998-02-09  |  1.2 KB  |  30 lines

  1. //----------------------------------------------------------------------------
  2. //Borland C++Builder
  3. //Copyright (c) 1987, 1998 Borland International Inc. All Rights Reserved.
  4. //----------------------------------------------------------------------------
  5. //---------------------------------------------------------------------------
  6. #ifndef CustDataH
  7. #define CustDataH
  8. //---------------------------------------------------------------------------
  9. #include <Classes.hpp>
  10. #include <Controls.hpp>
  11. #include <StdCtrls.hpp>
  12. #include <Forms.hpp>
  13. #include <DBGrids.hpp>
  14. #include <Grids.hpp>
  15. //---------------------------------------------------------------------------
  16. class TfmCustomer : public TForm
  17. {
  18. __published:    // IDE-managed Components 
  19.     TDBGrid *DBGrid1;
  20.     void __fastcall FormActivate(TObject *Sender);
  21.     void __fastcall FormClose(TObject *Sender, TCloseAction &Action);
  22. private:        // User declarations
  23. public:         // User declarations
  24.     virtual __fastcall TfmCustomer(TComponent* Owner);
  25. };
  26. //---------------------------------------------------------------------------
  27. extern TfmCustomer *fmCustomer;
  28. //---------------------------------------------------------------------------
  29. #endif
  30.